home *** CD-ROM | disk | FTP | other *** search
- {$A+,B-,D+,E+,F-,G+,I+,L+,N-,O-,P-,Q-,R-,S+,T-,V+,X+}
- {$M 16384,0,655360}
-
- {
- CHAIN.PAS
- Demonstrates sprite chaining
- }
-
- uses crt,uve32;
-
- var pal:palette;
-
- begin
- ia_inituve;
- ia_loadpalette('sphere.pal',pal);
- ia_loadspr('sphere.uvl',1);
- ia_chainsprite(1,spritesloaded,1);
- ia_setcycletime(100);
- spr[1].n:=1;
- ia_center(1,160,100,5);
- ia_powerup;
- ia_setpalette(pal);
- repeat
- ia_doframe;
- until keypressed;
- ia_shutdown;
- end.